iT邦幫忙

0

PYTHON 學習筆記 011~2

  • 分享至 

  • xImage
  •  

讀取與寫入

#不能讀取中文字編碼,顯示亂碼
file = open("5566.txt", mode="r")
file.write("\n很棒吧!")
file.close()

https://ithelp.ithome.com.tw/upload/images/20230202/20156136ipibn0mzJW.jpg

#第三個參數:顯示中文編碼
file = open("5566.txt", mode="a", encoding="utf-8")
file.write("\n很棒吧!")
file.close()

https://ithelp.ithome.com.tw/upload/images/20230202/20156136mQDL1t4vc7.jpg

#自動執行CLOSE關閉檔案
with open ("5566.txt", mode="a", encoding="utf-8") as file:
    file.write("\n超級厲害的啦~~~~")

https://ithelp.ithome.com.tw/upload/images/20230202/20156136gRwZ5Yqrzk.jpg


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言